home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / langs / nasm20 / nasm20s.zoo / ops.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-01-22  |  495 b   |  14 lines

  1. /* ---------------------------------------------------------------------- */
  2. /*                   Copyright (C) 1991 by Natürlich!                     */
  3. /*                      This file is copyrighted!                         */
  4. /*                Refer to the documentation for details.                 */
  5. /* ---------------------------------------------------------------------- */
  6. typedef struct
  7. {
  8.    char huge   *mnem;
  9.    byte huge   *instr;
  10. } _ops;
  11.  
  12. # define get_mnemo(i) ( ops[i].mnem )
  13.  
  14.